home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Setup / BCB / data.z / axform.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-09  |  791 b   |  26 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. // AXFORM.H - Base class used by Active Forms
  3. //
  4. // $Revision:   1.0.1.1  $
  5. // $Date:   31 Jan 1998 14:11:36  $
  6. //
  7. // Copyright (c) 1998 Borland International
  8. /////////////////////////////////////////////////////////////////////////////
  9. #ifndef __AXFORM_H
  10. #define __AXFORM_H
  11.  
  12. #include <forms.hpp>
  13.  
  14. // TActiveForm: Base class for a VCL Form exposed as an OCX Control
  15. //
  16. class TActiveForm : public Forms::TCustomActiveForm
  17. {
  18.   typedef Forms::TCustomActiveForm inherited;
  19. public:
  20.   __fastcall virtual TActiveForm(HWND ParentWindow): Forms::TCustomActiveForm(ParentWindow) {}
  21.   __fastcall virtual TActiveForm(TComponent* AOwner): Forms::TCustomActiveForm(AOwner) {}
  22. };
  23.  
  24.  
  25. #endif    //    __AXFORM_H
  26.